home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 November / macformat-018.iso / Utility Spectacular / AfterDark / TwilightZone ƒ / source / globals.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-01  |  684 b   |  30 lines  |  [TEXT/KAHL]

  1. /*-------------------------------------------------------------------------------------
  2.  *
  3.  * Simple Sample Application Framework
  4.  *
  5.  * ©1991 Apple Computer
  6.  *
  7.  -------------------------------------------------------------------------------------*/
  8. /*
  9.  * globals.c -- repository for global variables
  10.  *
  11.  * change history:
  12.  *
  13.  * SJF        11/6/91        1.0d1        initial coding
  14.  *
  15.  */
  16.  
  17. #include "const.h"
  18. #include "mytypes.h"
  19.  
  20. /* configuration flags */
  21.  
  22. Boolean    gHasWaitNextEvent;        // true if we have waitnextevent available
  23.  
  24. /* action flags */
  25.  
  26. Boolean    gDone;                    // application should terminate when set
  27. Boolean    gInBackground;            // true if application is in the background
  28.  
  29. RgnHandle gCursorRgn;
  30.